home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Winter Shell 1.0d2 / Source / Libraries / PreferencesLib / PreferencesLib.h < prev   
Encoding:
C/C++ Source or Header  |  1994-01-11  |  653 b   |  21 lines  |  [TEXT/KAHL]

  1. #pragma once
  2.  
  3. #include "FileLib.h"
  4.  
  5. /* resources in preferences file */
  6. enum {
  7.     PREFS_PROGRESS_POSITION = 128,    /* position of progress dialog */
  8.     PREFS_CLIPBOARD_POSITION,        /* position of clipboard window */
  9.     PREFS_ABOUT_POSITION,            /* position of about application window */
  10.     PREFS_HELP_POSITION,            /* position of help window */
  11.     PREFS_MEMORY_WINDOW_POSITION,    /* position of memory debug window */
  12.     PREFS_APPLICATION_POSITION,        /* position of application preferences window */
  13.     PREFS_APPLICATION,                /* application preferences */
  14.     rPrefsLast
  15. };
  16.  
  17. short PrefsReferenceNumber(void);
  18. FileType *PrefsFile(void);
  19. void PrefsOpen(void);
  20. void PrefsClose(void);
  21.